home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form2
- Caption = "Question??"
- ClientHeight = 1170
- ClientLeft = 1590
- ClientTop = 1515
- ClientWidth = 3540
- ClipControls = 0 'False
- ControlBox = 0 'False
- Height = 1605
- Left = 1530
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1170
- ScaleWidth = 3540
- Top = 1140
- Width = 3660
- Begin VB.CommandButton Command2
- Caption = "E&xit"
- Height = 312
- Left = 2760
- TabIndex = 4
- Top = 60
- Width = 672
- End
- Begin VB.CommandButton Command1
- Caption = "&OK"
- Default = -1 'True
- Height = 312
- Left = 2760
- TabIndex = 3
- Top = 600
- Width = 672
- End
- Begin VB.TextBox txtDrive
- Height = 288
- Left = 2160
- TabIndex = 2
- Text = "E"
- Top = 600
- Width = 372
- End
- Begin VB.Label Label2
- Caption = "Enter Drive letter of CD-ROM:"
- Height = 252
- Left = 60
- TabIndex = 1
- Top = 660
- Width = 2172
- End
- Begin VB.Label Label1
- Caption = "Please insert Windows 95 CD-ROM into drive."
- Height = 432
- Left = 660
- TabIndex = 0
- Top = 60
- Width = 1932
- End
- Attribute VB_Name = "Form2"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- cDriveLetter = Left$(txtDrive.Text, 1)
- Unload Form2
- End Sub
- Private Sub Command2_Click()
- End
- End Sub
-